home *** CD-ROM | disk | FTP | other *** search
- program Ccfmgr14;
-
- uses
- Forms,
- Ufmgr14 in 'UFMGR14.PAS' {CCFileMgrForm},
- Dddfunit in 'DDDFUNIT.PAS' {DestDDForm},
- Cfmpfun in 'CFMPFUN.PAS' {CCFMPropsForm},
- Drwsutl3 in 'DRWSUTL3.PAS',
- Drwsutl1 in 'DRWSUTL1.PAS';
-
- {$R *.RES}
-
- begin
- Application.Title := 'CC File Center';
- Application.CreateForm(TCCFileMgrForm, CCFileMgrForm);
- Application.CreateForm(TDestDDForm, DestDDForm);
- Application.CreateForm(TCCFMPropsForm, CCFMPropsForm);
- Application.Run;
- end.
-